home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / GraphStylePropertyEditor.java < prev    next >
Text File  |  1998-09-03  |  1KB  |  30 lines

  1. package com.symantec.itools.swing;
  2.  
  3. import com.symantec.itools.beans.*;
  4.  
  5. public final class GraphStylePropertyEditor
  6.     extends TaggedIntPropertyEditor
  7. {
  8.     private static TaggedInt[] m_Tags = null;
  9.  
  10.     // When the class loads, load the tags
  11.  
  12.     static
  13.     {
  14.         m_Tags = new TaggedInt[]
  15.         {
  16.             new TaggedInt("LINE_STYLE", com.symantec.itools.swing.JChart.LINE_STYLE, "com.symantec.itools.swing.JChart.LINE_STYLE"),
  17.             new TaggedInt("BAR_STYLE", com.symantec.itools.swing.JChart.BAR_STYLE, "com.symantec.itools.swing.JChart.BAR_STYLE"),
  18.             new TaggedInt("SCATTER_STYLE", com.symantec.itools.swing.JChart.SCATTER_STYLE, "com.symantec.itools.swing.JChart.SCATTER_STYLE"),
  19.             new TaggedInt("PIE_STYLE", com.symantec.itools.swing.JChart.PIE_STYLE, "com.symantec.itools.swing.JChart.PIE_STYLE"),
  20.             new TaggedInt("AREA_STYLE", com.symantec.itools.swing.JChart.AREA_STYLE, "com.symantec.itools.swing.JChart.AREA_STYLE"),
  21.  
  22.         };
  23.     }
  24.  
  25.     public GraphStylePropertyEditor()
  26.     {
  27.         super(m_Tags);
  28.     }
  29. }
  30.